home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Perl Multimedia Cyber Classroom
/
PERL Multimedia Cyber Classroom (Prentice Hall)(1998).ISO
/
perlbyex
/
code.jar
/
08ex003.jar
/
code
/
ch08
/
08ex003
/
08ex003.pl
next >
Wrap
Text File
|
1998-04-01
|
163b
|
11 lines
$first="Steve";
$last="Blenheim";
while(<>){
&greeting ( $first, $last) if /[Ss]teve/;
}
sub greeting{
print "Welcome to the club, $_[0] $_[1]\n";
}